- react 组件创建形式:
- 函数组件
1
2
3function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
} - class形式
1
2
3
4
5class Welcome extends React.Component {
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
赏
使用支付宝打赏
使用微信打赏
若你觉得我的文章对你有帮助,欢迎点击上方按钮对我打赏